(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/intuition.h>
void RefreshGadgets()
SYNOPSIS
struct Gadget * gadgets
struct Window * window
struct Requester * requester

LOCATION
In IntuitionBase at offset 37
FUNCTION
Refreshes all gadgets starting at the specified gadget.

INPUTS
gadgets
The first gadget to be refreshed
window
The gadget must be in this window
requester
If any gadget has GTYP_REQGADGET set, this must point to a valid Requester. Otherwise the value is ignored.
RESULT
None.

NOTES
EXAMPLE
// Refresh all gadgets of a window
RefreshGadgets (win->FirstGadget, win, NULL);

BUGS
SEE ALSO
RefreshGList()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
24.10.1996 aros
Use the official AROS macros over the __AROS versions.
29.08.1996 digulla
Commented Moved common code from driver to Intuition
28.08.1996 digulla
Proportional gadgets BOOPSI